home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / sun / NET / WWW / CONTENT / IMAGE / jpeg.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  435 b   |  13 lines

  1. package sun.net.www.content.image;
  2.  
  3. import java.io.IOException;
  4. import java.net.ContentHandler;
  5. import java.net.URLConnection;
  6. import sun.awt.image.URLImageSource;
  7.  
  8. public class jpeg extends ContentHandler {
  9.    public Object getContent(URLConnection var1) throws IOException {
  10.       return new URLImageSource(var1);
  11.    }
  12. }
  13.